home *** CD-ROM | disk | FTP | other *** search
/ Aminet 45 / Aminet 45 (2001)(GTI - Schatztruhe)[!][Oct 2001].iso / Aminet / game / role / ldmud-3.2-bin.lha / mud / doc / efun / call_resolved < prev    next >
Text File  |  2001-04-06  |  787b  |  21 lines

  1. SYNOPSIS
  2.         int call_resolved(mixed result, object ob, string func, ...)
  3.  
  4. DESCRIPTION
  5.         Similar to call_other(). If ob->func() is defined and publicly
  6.         accessible, any of the optional extra arguments are passed to
  7.         ob->func(...). The result of that function call is stored in
  8.         result, which must be passed by reference.
  9.  
  10.         If the current object is already destructed, or the ob does
  11.         not exist, or ob does not define a public accessible function
  12.         named func, call_resolved() returns 0 as failure code, else 1
  13.         for success.
  14.  
  15.         ob can also be an object_name. If a string is passed for ob, and
  16.         no object with that name does exist, an error occurs.
  17.  
  18. SEE ALSO
  19.         call_other(E), function_exists(E), find_object(E)
  20.  
  21.